home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Mouse Options 5.xpl < prev    next >
Text File  |  2002-04-11  |  984b  |  41 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH 1"="Hardware\Mouse\General Options"
  5. "NAME"="Sensitivity"
  6. "VERSION"="1.04"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Sensitivity"
  9. "DESCRIPTION 1"="This setting controls the sensitivity of your mouse. A higher value means more sensitive, a lower value means less sensitive."
  10. "DESCRIPTION 2"="To default value is 150 (Windows 9x/ME) or 14 (Windows 2000 and upwards)."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"=""
  15. "COMMENT 2"=""
  16.  
  17.  
  18. sV1="HKCU\Control Panel\Mouse\MouseSensitivity"
  19.  
  20.  
  21. SUB Plugin_Initialize
  22.  i=RegReadValue(sV1)
  23.  SetUIElement 1,i
  24.  
  25. END SUB
  26.  
  27. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  28.  s=GetUIElement(1)
  29.  if len(s)>0 then
  30.     Call RegWriteValue(sV1,s,1)
  31.  else
  32.     if RegValueExists(sV1) then
  33.        Call RegDeleteValue(sV1)
  34.     end if
  35.  end if
  36.  
  37. END SUB
  38.  
  39. SUB Plugin_Terminate
  40. END SUB
  41.